projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33327d6
)
gdkdevice-wayland: Fix compile warnings
author
Jasper St. Pierre
<jstpierre@mecheye.net>
Sat, 26 Jul 2014 13:46:56 +0000
(09:46 -0400)
committer
Jasper St. Pierre
<jstpierre@mecheye.net>
Sat, 26 Jul 2014 13:47:14 +0000
(09:47 -0400)
These are signed, not unsigned.
gdk/wayland/gdkdevice-wayland.c
patch
|
blob
|
history
diff --git
a/gdk/wayland/gdkdevice-wayland.c
b/gdk/wayland/gdkdevice-wayland.c
index 5e99e2e992316bd3869783cb68b02941a972fb83..37c6a94d8a6fd2fec9873820d4060655d07de535 100644
(file)
--- a/
gdk/wayland/gdkdevice-wayland.c
+++ b/
gdk/wayland/gdkdevice-wayland.c
@@
-1292,8
+1292,8
@@
keyboard_handle_modifiers (void *data,
static void
keyboard_handle_repeat_info (void *data,
struct wl_keyboard *keyboard,
-
uint32_t
rate,
-
uint32_t
delay)
+
int32_t
rate,
+
int32_t
delay)
{
GdkWaylandDeviceData *device = data;